home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
system
/
int_util.zip
/
INTDUMP.C
< prev
next >
Wrap
Text File
|
1986-12-21
|
896b
|
21 lines
/*************************************************************
* *
* Interupt Dump Utility *
* Written by Mark C. Peterson *
* Norwich, CT *
* December 21, 1986 *
* This program and GET_INT reside *
* in the public domain. *
* *
*************************************************************/
main ()
{
int n;
int temp [ 2 ];
for (n = 0; n < 0xff; n++) {
get_int (n, temp);
printf ("%02X = %04X:%04X ", n, temp [ 0 ], temp [ 1 ]);
}
}